GET Hero Teammates
/web/academy/heroes/{hero_identifier}/teammates
Retrieve teammate information for a specific hero. Supports query parameters for rank, pagination, and localization.
Path parameters:
- hero_identifier: Hero identifier as numeric hero ID or hero name. Accepts values like
30,Yi Sun-shin, oryisunshin.
Query parameters:
- rank: Rank filter. Allowed values:
all,epic,legend,mythic,honor,glory. - size: Number of items per page (minimum: 1).
- index: Page index (starting from 1).
- lang: Language code for localized content (default:
en).
The response includes hero teammate data:
- records: Array of hero entries, each containing:
- _id: Unique record identifier.
- _createdAt: Creation timestamp.
- _updatedAt: Last update timestamp.
- data:
- main_heroid: Target hero ID.
- main_hero_ban_rate: Ban rate of the target hero.
- main_hero_pick_rate: Pick rate of the target hero.
- main_hero_win_rate: Win rate of the target hero.
- sub_hero: Array of teammate heroes, each containing:
- heroid: Teammate hero ID.
- hero_win_rate: Win rate of the teammate hero.
- increase_win_rate: Impact value showing how much this hero improves or reduces win rate when paired with the target.
This endpoint is useful for:
- Analyzing which heroes synergize well with the target hero.
- Understanding team composition dynamics.
- Guiding players in drafting strategies.
{
"code": 0,
"message": "OK",
"data": {
"records": [
{
"_createdAt": 1774899901719,
"_id": "69cad2be54ae2bda46ed3ce7",
"_updatedAt": 1774899901719,
"data": {
"big_rank": "9",
"camp_type": "1",
"main_hero_ban_rate": 0.08109399676322937,
"main_hero_pick_rate": 0.010181000456213951,
"main_hero_win_rate": 0.4657759964466095,
"main_heroid": 17,
"sub_hero": [
{
"hero_win_rate": 0.442802,
"heroid": 69,
"increase_win_rate": -0.114625
}
]
},
"id": 1755924,
"sourceId": 2777391
}
],
"total": 1
}
}